6d912a066e540ad19c2c002c9e89689614c2170e
[openwrt/svn-archive/archive.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.3.2
13 PKG_RELEASE:=1
14
15 PKG_MD5SUM:=545698693b636cfc844aafc6729fd48a
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-mod-ipset
207 $(call Package/iptables/Module, +kmod-ipt-ipset)
208 TITLE:=IPset extension
209 endef
210
211 define Package/iptables-utils
212 $(call Package/iptables/Module, )
213 TITLE:=iptables save and restore utilities
214 endef
215
216 define Package/ip6tables
217 $(call Package/iptables/Default)
218 DEPENDS:=+kmod-ip6tables
219 CATEGORY:=IPv6
220 TITLE:=IPv6 firewall administration tool
221 MENU:=1
222 endef
223
224 define Package/ip6tables-utils
225 $(call Package/iptables/Default)
226 DEPENDS:=ip6tables
227 CATEGORY:=IPv6
228 TITLE:=ip6tables save and restore utilities
229 endef
230
231 define Package/libiptc
232 $(call Package/iptables/Default)
233 SECTION:=libs
234 CATEGORY:=Libraries
235 TITLE:=IPv4/IPv6 firewall - shared libiptc library
236 endef
237
238 define Package/libxtables
239 $(call Package/iptables/Default)
240 SECTION:=libs
241 CATEGORY:=Libraries
242 TITLE:=IPv4/IPv6 firewall - shared xtables library
243 endef
244
245
246 TARGET_CPPFLAGS := -I$(PKG_BUILD_DIR)/include $(TARGET_CPPFLAGS)
247 TARGET_CFLAGS += $(FPIC)
248 CONFIGURE_ARGS += \
249 --enable-shared \
250 --enable-static \
251 --enable-devel \
252 --with-kernel="$(LINUX_DIR)" \
253 --with-xtlibdir=/usr/lib/iptables
254
255 define Build/Compile
256 mkdir -p $(PKG_INSTALL_DIR)
257 $(MAKE) -C $(PKG_BUILD_DIR) \
258 $(TARGET_CONFIGURE_OPTS) \
259 COPT_FLAGS="$(TARGET_CFLAGS)" \
260 LDFLAGS="-rdynamic -static-libgcc" \
261 KERNEL_DIR="$(LINUX_DIR)" PREFIX=/usr \
262 KBUILD_OUTPUT="$(LINUX_DIR)" \
263 DESTDIR="$(PKG_INSTALL_DIR)" \
264 all install $(MAKE_TARGETS)
265 endef
266
267 define Build/InstallDev
268 mkdir -p $(1)/usr/include
269 mkdir -p $(1)/usr/include/iptables
270 mkdir -p $(1)/usr/include/net/netfilter
271
272 # XXX: iptables header fixup, some headers are not installed by iptables anymore
273 $(CP) $(PKG_BUILD_DIR)/include/net/netfilter/*.h $(1)/usr/include/net/netfilter/
274 $(CP) $(PKG_BUILD_DIR)/include/iptables/*.h $(1)/usr/include/iptables/
275 $(CP) $(PKG_BUILD_DIR)/include/iptables.h $(1)/usr/include/
276
277 $(CP) $(PKG_INSTALL_DIR)/usr/include/* $(1)/usr/include/
278 mkdir -p $(1)/usr/lib
279 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libxtables.{a,so*} $(1)/usr/lib/
280 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libiptc.{a,so*} $(1)/usr/lib/
281 mkdir -p $(1)/usr/lib/pkgconfig
282 $(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/xtables.pc $(1)/usr/lib/pkgconfig/
283 $(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/libiptc.pc $(1)/usr/lib/pkgconfig/
284 endef
285
286 define Package/iptables/install
287 $(INSTALL_DIR) $(1)/usr/sbin
288 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/iptables $(1)/usr/sbin/
289 $(INSTALL_DIR) $(1)/usr/lib/iptables
290 (cd $(PKG_INSTALL_DIR)/usr/lib/iptables ; \
291 for m in $(patsubst xt_%,ipt_%,$(IPT_BUILTIN)) $(patsubst ipt_%,xt_%,$(IPT_BUILTIN)); do \
292 if [ -f $(PKG_INSTALL_DIR)/usr/lib/iptables/lib$$$${m}.so ]; then \
293 $(CP) $(PKG_INSTALL_DIR)/usr/lib/iptables/lib$$$${m}.so $(1)/usr/lib/iptables/ ;\
294 fi; \
295 done \
296 )
297 endef
298
299 define Package/iptables-utils/install
300 $(INSTALL_DIR) $(1)/usr/sbin
301 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/iptables-{save,restore} $(1)/usr/sbin/
302 endef
303
304 define Package/ip6tables/install
305 $(INSTALL_DIR) $(1)/usr/sbin
306 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/ip6tables $(1)/usr/sbin/
307 $(INSTALL_DIR) $(1)/usr/lib/iptables
308 (cd $(PKG_INSTALL_DIR)/usr/lib/iptables ; \
309 $(CP) libip6t_*.so $(1)/usr/lib/iptables/ \
310 )
311 endef
312
313 define Package/ip6tables-utils/install
314 $(INSTALL_DIR) $(1)/usr/sbin
315 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/ip6tables-{save,restore} $(1)/usr/sbin/
316 endef
317
318 define Package/libiptc/install
319 $(INSTALL_DIR) $(1)/usr/lib
320 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/lib/libiptc.so.* $(1)/usr/lib/
321 endef
322
323 define Package/libxtables/install
324 $(INSTALL_DIR) $(1)/usr/lib
325 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/lib/libxtables.so.* $(1)/usr/lib/
326 endef
327
328 define BuildPlugin
329 define Package/$(1)/install
330 $(INSTALL_DIR) $$(1)/usr/lib/iptables
331 for m in $(patsubst xt_%,ipt_%,$(2)) $(patsubst ipt_%,xt_%,$(2)); do \
332 if [ -f $(PKG_INSTALL_DIR)/usr/lib/iptables/lib$$$$$$$${m}.so ]; then \
333 $(CP) $(PKG_INSTALL_DIR)/usr/lib/iptables/lib$$$$$$$${m}.so $$(1)/usr/lib/iptables/ ; \
334 fi; \
335 done
336 $(3)
337 endef
338
339 $$(eval $$(call BuildPackage,$(1)))
340 endef
341
342 L7_INSTALL:=\
343 $(INSTALL_DIR) $$(1)/etc/l7-protocols; \
344 $(CP) files/l7/*.pat $$(1)/etc/l7-protocols/
345
346
347 $(eval $(call BuildPackage,iptables))
348 $(eval $(call BuildPackage,iptables-utils))
349 $(eval $(call BuildPlugin,iptables-mod-conntrack,$(IPT_CONNTRACK-m)))
350 $(eval $(call BuildPlugin,iptables-mod-conntrack-extra,$(IPT_CONNTRACK_EXTRA-m)))
351 $(eval $(call BuildPlugin,iptables-mod-extra,$(IPT_EXTRA-m)))
352 $(eval $(call BuildPlugin,iptables-mod-ipset,$(IPT_IPSET-m)))
353 $(eval $(call BuildPlugin,iptables-mod-filter,$(IPT_FILTER-m),$(L7_INSTALL)))
354 $(eval $(call BuildPlugin,iptables-mod-imq,$(IPT_IMQ-m)))
355 $(eval $(call BuildPlugin,iptables-mod-ipopt,$(IPT_IPOPT-m)))
356 $(eval $(call BuildPlugin,iptables-mod-ipsec,$(IPT_IPSEC-m)))
357 $(eval $(call BuildPlugin,iptables-mod-nat,$(IPT_NAT-m)))
358 $(eval $(call BuildPlugin,iptables-mod-nat-extra,$(IPT_NAT_EXTRA-m)))
359 $(eval $(call BuildPlugin,iptables-mod-iprange,$(IPT_IPRANGE-m)))
360 $(eval $(call BuildPlugin,iptables-mod-ulog,$(IPT_ULOG-m)))
361 $(eval $(call BuildPackage,ip6tables))
362 $(eval $(call BuildPackage,ip6tables-utils))
363 $(eval $(call BuildPackage,libiptc))
364 $(eval $(call BuildPackage,libxtables))