b7ffa5a212d1efce5083b2146e20da2538baabce
[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.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 IPTABLES_MAKEOPTS = \
256 $(TARGET_CONFIGURE_OPTS) \
257 COPT_FLAGS="$(TARGET_CFLAGS)" \
258 LDFLAGS="-rdynamic -static-libgcc" \
259 KERNEL_DIR="$(LINUX_DIR)" PREFIX=/usr \
260 KBUILD_OUTPUT="$(LINUX_DIR)" \
261 DESTDIR="$(PKG_INSTALL_DIR)" \
262 all install $(MAKE_TARGETS)
263
264 define Build/Compile
265 mkdir -p $(PKG_INSTALL_DIR)
266 $(MAKE) -C $(PKG_BUILD_DIR) $(IPTABLES_MAKEOPTS)
267 $(MAKE) -C $(PKG_BUILD_DIR)/libipq $(IPTABLES_MAKEOPTS)
268 endef
269
270 define Build/InstallDev
271 mkdir -p $(1)/usr/include
272 mkdir -p $(1)/usr/include/iptables
273 mkdir -p $(1)/usr/include/net/netfilter
274
275 # XXX: iptables header fixup, some headers are not installed by iptables anymore
276 $(CP) $(PKG_BUILD_DIR)/include/net/netfilter/*.h $(1)/usr/include/net/netfilter/
277 $(CP) $(PKG_BUILD_DIR)/include/iptables/*.h $(1)/usr/include/iptables/
278 $(CP) $(PKG_BUILD_DIR)/include/iptables.h $(1)/usr/include/
279 $(CP) $(PKG_BUILD_DIR)/include/libipq/libipq.h $(1)/usr/include/
280
281 $(CP) $(PKG_INSTALL_DIR)/usr/include/* $(1)/usr/include/
282 mkdir -p $(1)/usr/lib
283 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libxtables.{a,so*} $(1)/usr/lib/
284 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libiptc.{a,so*} $(1)/usr/lib/
285 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libipq.a $(1)/usr/lib/
286 mkdir -p $(1)/usr/lib/pkgconfig
287 $(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/xtables.pc $(1)/usr/lib/pkgconfig/
288 $(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/libiptc.pc $(1)/usr/lib/pkgconfig/
289 endef
290
291 define Package/iptables/install
292 $(INSTALL_DIR) $(1)/usr/sbin
293 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/iptables $(1)/usr/sbin/
294 $(INSTALL_DIR) $(1)/usr/lib/iptables
295 (cd $(PKG_INSTALL_DIR)/usr/lib/iptables ; \
296 for m in $(patsubst xt_%,ipt_%,$(IPT_BUILTIN)) $(patsubst ipt_%,xt_%,$(IPT_BUILTIN)); do \
297 if [ -f $(PKG_INSTALL_DIR)/usr/lib/iptables/lib$$$${m}.so ]; then \
298 $(CP) $(PKG_INSTALL_DIR)/usr/lib/iptables/lib$$$${m}.so $(1)/usr/lib/iptables/ ;\
299 fi; \
300 done \
301 )
302 endef
303
304 define Package/iptables-utils/install
305 $(INSTALL_DIR) $(1)/usr/sbin
306 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/iptables-{save,restore} $(1)/usr/sbin/
307 endef
308
309 define Package/ip6tables/install
310 $(INSTALL_DIR) $(1)/usr/sbin
311 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/ip6tables $(1)/usr/sbin/
312 $(INSTALL_DIR) $(1)/usr/lib/iptables
313 (cd $(PKG_INSTALL_DIR)/usr/lib/iptables ; \
314 $(CP) libip6t_*.so $(1)/usr/lib/iptables/ \
315 )
316 endef
317
318 define Package/ip6tables-utils/install
319 $(INSTALL_DIR) $(1)/usr/sbin
320 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/ip6tables-{save,restore} $(1)/usr/sbin/
321 endef
322
323 define Package/libiptc/install
324 $(INSTALL_DIR) $(1)/usr/lib
325 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/lib/libiptc.so.* $(1)/usr/lib/
326 endef
327
328 define Package/libxtables/install
329 $(INSTALL_DIR) $(1)/usr/lib
330 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/lib/libxtables.so.* $(1)/usr/lib/
331 endef
332
333 define BuildPlugin
334 define Package/$(1)/install
335 $(INSTALL_DIR) $$(1)/usr/lib/iptables
336 for m in $(patsubst xt_%,ipt_%,$(2)) $(patsubst ipt_%,xt_%,$(2)); do \
337 if [ -f $(PKG_INSTALL_DIR)/usr/lib/iptables/lib$$$$$$$${m}.so ]; then \
338 $(CP) $(PKG_INSTALL_DIR)/usr/lib/iptables/lib$$$$$$$${m}.so $$(1)/usr/lib/iptables/ ; \
339 fi; \
340 done
341 $(3)
342 endef
343
344 $$(eval $$(call BuildPackage,$(1)))
345 endef
346
347 L7_INSTALL:=\
348 $(INSTALL_DIR) $$(1)/etc/l7-protocols; \
349 $(CP) files/l7/*.pat $$(1)/etc/l7-protocols/
350
351
352 $(eval $(call BuildPackage,iptables))
353 $(eval $(call BuildPackage,iptables-utils))
354 $(eval $(call BuildPlugin,iptables-mod-conntrack,$(IPT_CONNTRACK-m)))
355 $(eval $(call BuildPlugin,iptables-mod-conntrack-extra,$(IPT_CONNTRACK_EXTRA-m)))
356 $(eval $(call BuildPlugin,iptables-mod-extra,$(IPT_EXTRA-m)))
357 $(eval $(call BuildPlugin,iptables-mod-ipset,$(IPT_IPSET-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))
This page took 0.051548 seconds and 3 git commands to generate.