[package] kmod-ipt-nathelper-extra: Fix kmod-textsearch dependency (#5665)
[openwrt.git] / package / kernel / modules / netfilter.mk
1
2 #
3 # Copyright (C) 2006-2008 OpenWrt.org
4 #
5 # This is free software, licensed under the GNU General Public License v2.
6 # See /LICENSE for more information.
7 #
8
9 NF_MENU:=Netfilter Extensions
10 NF_KMOD:=1
11 include $(INCLUDE_DIR)/netfilter.mk
12
13 define KernelPackage/ipt-core
14   SUBMENU:=$(NF_MENU)
15   TITLE:=Netfilter core
16   KCONFIG:=$(KCONFIG_IPT_CORE)
17   FILES:=$(foreach mod,$(IPT_CORE-m),$(LINUX_DIR)/net/$(mod).$(LINUX_KMOD_SUFFIX))
18   AUTOLOAD:=$(call AutoLoad,40,$(notdir $(IPT_CORE-m)))
19 endef
20
21 define KernelPackage/ipt-core/description
22  Netfilter core kernel modules
23  Includes:
24  - limit
25  - LOG
26  - mac
27  - multiport
28  - TCPMSS
29  - REJECT
30 endef
31
32 $(eval $(call KernelPackage,ipt-core))
33
34
35 define KernelPackage/ipt-conntrack
36   SUBMENU:=$(NF_MENU)
37   TITLE:=Basic connection tracking modules
38   KCONFIG:=$(KCONFIG_IPT_CONNTRACK)
39   FILES:=$(foreach mod,$(IPT_CONNTRACK-m),$(LINUX_DIR)/net/$(mod).$(LINUX_KMOD_SUFFIX))
40   AUTOLOAD:=$(call AutoLoad,41,$(notdir $(IPT_CONNTRACK-m)))
41   DEPENDS:= kmod-ipt-core
42 endef
43
44 define KernelPackage/ipt-conntrack/description
45  Netfilter (IPv4) kernel modules for connection tracking
46  Includes:
47  - state
48 endef
49
50 $(eval $(call KernelPackage,ipt-conntrack))
51
52
53 define KernelPackage/ipt-conntrack-extra
54   SUBMENU:=$(NF_MENU)
55   TITLE:=Extra connection tracking modules
56   KCONFIG:=$(KCONFIG_IPT_CONNTRACK_EXTRA)
57   FILES:=$(foreach mod,$(IPT_CONNTRACK_EXTRA-m),$(LINUX_DIR)/net/$(mod).$(LINUX_KMOD_SUFFIX))
58   AUTOLOAD:=$(call AutoLoad,42,$(notdir $(IPT_CONNTRACK_EXTRA-m)))
59   DEPENDS:= kmod-ipt-core +kmod-ipt-conntrack
60 endef
61
62 define KernelPackage/ipt-conntrack-extra/description
63  Netfilter (IPv4) extra kernel modules for connection tracking
64  Includes:
65  - connbytes
66  - connmark/CONNMARK
67  - conntrack
68  - helper
69  - recent
70  - NOTRACK
71 endef
72
73 $(eval $(call KernelPackage,ipt-conntrack-extra))
74
75
76 define KernelPackage/ipt-filter
77   SUBMENU:=$(NF_MENU)
78   TITLE:=Modules for packet content inspection
79   KCONFIG:=$(KCONFIG_IPT_FILTER)
80   FILES:=$(foreach mod,$(IPT_FILTER-m),$(LINUX_DIR)/net/$(mod).$(LINUX_KMOD_SUFFIX))
81   AUTOLOAD:=$(call AutoLoad,45,$(notdir $(IPT_FILTER-m)))
82   DEPENDS:=kmod-ipt-core +LINUX_2_6:kmod-textsearch
83 endef
84
85 define KernelPackage/ipt-filter/description
86  Netfilter (IPv4) kernel modules for packet content inspection
87  Includes:
88  - ipt_layer7
89  - ipt_string
90 endef
91
92 $(eval $(call KernelPackage,ipt-filter))
93
94
95 define KernelPackage/ipt-ipopt
96   SUBMENU:=$(NF_MENU)
97   TITLE:=Modules for matching/changing IP packet options
98   KCONFIG:=$(KCONFIG_IPT_IPOPT)
99   FILES:=$(foreach mod,$(IPT_IPOPT-m),$(LINUX_DIR)/net/$(mod).$(LINUX_KMOD_SUFFIX))
100   AUTOLOAD:=$(call AutoLoad,45,$(notdir $(IPT_IPOPT-m)))
101   DEPENDS:= kmod-ipt-core
102 endef
103
104 define KernelPackage/ipt-ipopt/description
105  Netfilter (IPv4) modules for matching/changing IP packet options
106  Includes:
107  - ipt_CLASSIFY
108  - ipt_dscp/DSCP
109  - ipt_ecn/ECN
110  - ipt_length
111  - ipt_tos/TOS
112  - ipt_tcpmms
113  - ipt_ttl/TTL
114  - ipt_unclean
115 endef
116
117 $(eval $(call KernelPackage,ipt-ipopt))
118
119
120 define KernelPackage/ipt-ipsec
121   SUBMENU:=$(NF_MENU)
122   TITLE:=Modules for matching IPSec packets
123   KCONFIG:=$(KCONFIG_IPT_IPSEC)
124   FILES:=$(foreach mod,$(IPT_IPSEC-m),$(LINUX_DIR)/net/$(mod).$(LINUX_KMOD_SUFFIX))
125   AUTOLOAD:=$(call AutoLoad,45,$(notdir $(IPT_IPSEC-m)))
126   DEPENDS:= kmod-ipt-core
127 endef
128
129 define KernelPackage/ipt-ipsec/description
130  Netfilter (IPv4) modules for matching IPSec packets
131  Includes:
132  - ipt_ah
133  - ipt_esp
134 endef
135
136 $(eval $(call KernelPackage,ipt-ipsec))
137
138
139 define KernelPackage/ipt-nat
140   SUBMENU:=$(NF_MENU)
141   TITLE:=Basic NAT targets
142   KCONFIG:=$(KCONFIG_IPT_NAT)
143   FILES:=$(foreach mod,$(IPT_NAT-m),$(LINUX_DIR)/net/$(mod).$(LINUX_KMOD_SUFFIX))
144   AUTOLOAD:=$(call AutoLoad,42,$(notdir $(IPT_NAT-m)))
145   DEPENDS:= kmod-ipt-core +kmod-ipt-conntrack
146 endef
147
148 define KernelPackage/ipt-nat/description
149  Netfilter (IPv4) kernel modules for basic NAT targets
150  Includes:
151  - MASQUERADE
152 endef
153
154 $(eval $(call KernelPackage,ipt-nat))
155
156
157 define KernelPackage/ipt-nat-extra
158   SUBMENU:=$(NF_MENU)
159   TITLE:=Extra NAT targets
160   KCONFIG:=$(KCONFIG_IPT_NAT_EXTRA)
161   FILES:=$(foreach mod,$(IPT_NAT_EXTRA-m),$(LINUX_DIR)/net/$(mod).$(LINUX_KMOD_SUFFIX))
162   AUTOLOAD:=$(call AutoLoad,43,$(notdir $(IPT_NAT_EXTRA-m)))
163   DEPENDS:= kmod-ipt-core +kmod-ipt-nat
164 endef
165
166 define KernelPackage/ipt-nat-extra/description
167  Netfilter (IPv4) kernel modules for extra NAT targets
168  Includes:
169  - MIRROR
170  - NETMAP
171  - REDIRECT
172 endef
173
174 $(eval $(call KernelPackage,ipt-nat-extra))
175
176
177 define KernelPackage/ipt-nathelper
178   SUBMENU:=$(NF_MENU)
179   TITLE:=Basic Conntrack and NAT helpers
180   KCONFIG:=$(KCONFIG_IPT_NATHELPER)
181   FILES:=$(foreach mod,$(IPT_NATHELPER-m),$(LINUX_DIR)/net/$(mod).$(LINUX_KMOD_SUFFIX))
182   AUTOLOAD:=$(call AutoLoad,45,$(notdir $(IPT_NATHELPER-m)))
183   DEPENDS:= kmod-ipt-core +kmod-ipt-nat
184 endef
185
186 define KernelPackage/ipt-nathelper/description
187  Default Netfilter (IPv4) Conntrack and NAT helpers
188  Includes:
189  - conntrack_ftp
190  - nat_ftp
191  - conntrack_irc
192  - nat_irc
193  - conntrack_tftp
194  - nat_tftp
195 endef
196
197 $(eval $(call KernelPackage,ipt-nathelper))
198
199
200 define KernelPackage/ipt-nathelper-extra
201   SUBMENU:=$(NF_MENU)
202   TITLE:=Extra Conntrack and NAT helpers
203   KCONFIG:=$(KCONFIG_IPT_NATHELPER_EXTRA)
204   FILES:=$(foreach mod,$(IPT_NATHELPER_EXTRA-m),$(LINUX_DIR)/net/$(mod).$(LINUX_KMOD_SUFFIX))
205   AUTOLOAD:=$(call AutoLoad,45,$(notdir $(IPT_NATHELPER_EXTRA-m)))
206   DEPENDS:= kmod-ipt-core +kmod-ipt-nat +LINUX_2_6:kmod-textsearch
207 endef
208
209 define KernelPackage/ipt-nathelper-extra/description
210  Extra Netfilter (IPv4) Conntrack and NAT helpers
211  Includes:
212  - ip_conntrack_amanda
213  - ip_conntrack_proto_gre
214  - ip_nat_proto_gre
215  - ip_conntrack_pptp
216  - ip_nat_pptp
217  - ip_conntrack_sip
218  - ip_nat_sip
219  - ip_nat_snmp_basic
220 endef
221
222 $(eval $(call KernelPackage,ipt-nathelper-extra))
223
224
225 define KernelPackage/ipt-imq
226   SUBMENU:=$(NF_MENU)
227   TITLE:=Intermediate Queueing support
228   KCONFIG:= \
229         CONFIG_IMQ \
230         CONFIG_IMQ_BEHAVIOR_BA=y \
231         CONFIG_IMQ_NUM_DEVS=2 \
232         CONFIG_NETFILTER_XT_TARGET_IMQ
233   FILES:= \
234         $(LINUX_DIR)/drivers/net/imq.$(LINUX_KMOD_SUFFIX) \
235         $(foreach mod,$(IPT_IMQ-m),$(LINUX_DIR)/net/$(mod).$(LINUX_KMOD_SUFFIX))
236   AUTOLOAD:=$(call AutoLoad,45,$(notdir \
237         imq \
238         $(IPT_IMQ-m) \
239   ))
240   DEPENDS:= kmod-ipt-core
241 endef
242
243 define KernelPackage/ipt-imq/description
244  Kernel support for Intermediate Queueing devices
245 endef
246
247 $(eval $(call KernelPackage,ipt-imq))
248
249
250 define KernelPackage/ipt-queue
251   SUBMENU:=$(NF_MENU)
252   TITLE:=Module for user-space packet queueing
253   KCONFIG:=$(KCONFIG_IPT_QUEUE)
254   FILES:=$(foreach mod,$(IPT_QUEUE-m),$(LINUX_DIR)/net/$(mod).$(LINUX_KMOD_SUFFIX))
255   AUTOLOAD:=$(call AutoLoad,45,$(notdir $(IPT_QUEUE-m)))
256   DEPENDS:= kmod-ipt-core
257 endef
258
259 define KernelPackage/ipt-queue/description
260  Netfilter (IPv4) module for user-space packet queueing
261  Includes:
262  - QUEUE
263 endef
264
265 $(eval $(call KernelPackage,ipt-queue))
266
267
268 define KernelPackage/ipt-ulog
269   SUBMENU:=$(NF_MENU)
270   TITLE:=Module for user-space packet logging
271   KCONFIG:=$(KCONFIG_IPT_ULOG)
272   FILES:=$(foreach mod,$(IPT_ULOG-m),$(LINUX_DIR)/net/$(mod).$(LINUX_KMOD_SUFFIX))
273   AUTOLOAD:=$(call AutoLoad,45,$(notdir $(IPT_ULOG-m)))
274   DEPENDS:= kmod-ipt-core
275 endef
276
277 define KernelPackage/ipt-ulog/description
278  Netfilter (IPv4) module for user-space packet logging
279  Includes:
280  - ipt_ULOG
281 endef
282
283 $(eval $(call KernelPackage,ipt-ulog))
284
285
286 define KernelPackage/ipt-iprange
287   SUBMENU:=$(NF_MENU)
288   TITLE:=Module for matching ip ranges
289   FILES:=$(foreach mod,$(IPT_IPRANGE-m),$(LINUX_DIR)/net/$(mod).$(LINUX_KMOD_SUFFIX))
290   AUTOLOAD:=$(call AutoLoad,45,$(notdir $(IPT_IPRANGE-m)))
291   DEPENDS:= kmod-ipt-core
292 endef
293
294 define KernelPackage/ipt-iprange/description
295  Netfilter (IPv4) module for matching ip ranges
296  Includes:
297  - ipt_IPRANGE
298 endef
299
300 $(eval $(call KernelPackage,ipt-iprange))
301
302
303 define KernelPackage/ipt-ipset
304   SUBMENU:=$(NF_MENU)
305   TITLE:=IPSET Modules
306   KCONFIG:=$(KCONFIG_IPT_IPSET)
307   FILES:=$(foreach mod,$(IPT_IPSET-m),$(LINUX_DIR)/net/$(mod).$(LINUX_KMOD_SUFFIX))
308   AUTOLOAD:=$(call AutoLoad,45,$(notdir $(IPT_IPSET-m)))
309   DEPENDS:= kmod-ipt-core
310 endef
311
312 define KernelPackage/ipt-ipset/description
313  Netfilter kernel modules for ipset
314  Includes:
315  - ip_set
316  - ip_set_iphash
317  - ip_set_ipmap
318  - ip_set_ipporthash
319  - ip_set_iptree
320  - ip_set_iptreemap
321  - ip_set_macipmap
322  - ip_set_nethash
323  - ip_set_portmap
324  - ipt_set
325  - ipt_SET
326 endef
327
328 $(eval $(call KernelPackage,ipt-ipset))
329
330
331 define KernelPackage/ipt-extra
332   SUBMENU:=$(NF_MENU)
333   TITLE:=Extra modules
334   KCONFIG:=$(KCONFIG_IPT_EXTRA)
335   FILES:=$(foreach mod,$(IPT_EXTRA-m),$(LINUX_DIR)/net/$(mod).$(LINUX_KMOD_SUFFIX))
336   AUTOLOAD:=$(call AutoLoad,45,$(notdir $(IPT_EXTRA-m)))
337   DEPENDS:= kmod-ipt-core
338 endef
339
340 define KernelPackage/ipt-extra/description
341  Other Netfilter (IPv4) kernel modules
342  Includes:
343  - ipt_owner
344  - ipt_physdev
345  - ipt_pkttype
346  - ipt_recent
347  - iptable_raw
348  - xt_NOTRACK
349 endef
350
351 $(eval $(call KernelPackage,ipt-extra))
352
353
354 define KernelPackage/ip6tables
355   SUBMENU:=$(NF_MENU)
356   TITLE:=IPv6 modules
357   DEPENDS:=+kmod-ipv6
358   KCONFIG:=$(KCONFIG_IPT_IPV6)
359   FILES:=$(foreach mod,$(IPT_IPV6-m),$(LINUX_DIR)/net/$(mod).$(LINUX_KMOD_SUFFIX))
360   AUTOLOAD:=$(call AutoLoad,49,$(notdir $(IPT_IPV6-m)))
361 endef
362
363 define KernelPackage/ip6tables/description
364  Netfilter IPv6 firewalling support
365 endef
366
367 $(eval $(call KernelPackage,ip6tables))
368
369
370 define KernelPackage/arptables
371   SUBMENU:=$(NF_MENU)
372   TITLE:=ARP firewalling modules
373   FILES:=$(LINUX_DIR)/net/ipv4/netfilter/arp*.$(LINUX_KMOD_SUFFIX)
374   KCONFIG:=CONFIG_IP_NF_ARPTABLES \
375     CONFIG_IP_NF_ARPFILTER \
376     CONFIG_IP_NF_ARP_MANGLE
377   AUTOLOAD:=$(call AutoLoad,49,$(notdir $(patsubst %.$(LINUX_KMOD_SUFFIX),%,$(wildcard $(LINUX_DIR)/net/ipv4/netfilter/arp*.$(LINUX_KMOD_SUFFIX)))))
378 endef
379
380 define KernelPackage/arptables/description
381  Kernel modules for ARP firewalling
382 endef
383
384 $(eval $(call KernelPackage,arptables))
385
386 define KernelPackage/ebtables
387   SUBMENU:=$(NF_MENU)
388   TITLE:=Bridge firewalling modules
389   DEPENDS:=@LINUX_2_6
390   FILES:=$(foreach mod,$(EBTABLES-m),$(LINUX_DIR)/net/$(mod).$(LINUX_KMOD_SUFFIX))
391   KCONFIG:=CONFIG_BRIDGE_NETFILTER=y \
392         $(KCONFIG_EBTABLES)
393   AUTOLOAD:=$(call AutoLoad,49,$(notdir $(EBTABLES-m)))
394 endef
395
396 define KernelPackage/ebtables/description
397   ebtables is a general, extensible frame/packet identification
398   framework. It provides you to do Ethernet
399   filtering/NAT/brouting on the Ethernet bridge.
400 endef
401
402 $(eval $(call KernelPackage,ebtables))
403
404 define KernelPackage/ebtables-ipv4
405   SUBMENU:=$(NF_MENU)
406   TITLE:=ebtables: IPv4 support
407   DEPENDS:= kmod-ebtables
408   FILES:=$(foreach mod,$(EBTABLES_IP4-m),$(LINUX_DIR)/net/$(mod).$(LINUX_KMOD_SUFFIX))
409   KCONFIG:=$(KCONFIG_EBTABLES_IP4)
410   AUTOLOAD:=$(call AutoLoad,49,$(notdir $(EBTABLES_IP4-m)))
411 endef
412
413 define KernelPackage/ebtables-ipv4/description
414  This option adds the IPv4 support to ebtables, which allows basic
415  IPv4 header field filtering, ARP filtering as well as SNAT, DNAT targets.
416 endef
417
418 $(eval $(call KernelPackage,ebtables-ipv4))
419
420 define KernelPackage/ebtables-ipv6
421   SUBMENU:=$(NF_MENU)
422   TITLE:=ebtables: IPv6 support
423   DEPENDS:= kmod-ebtables
424   FILES:=$(foreach mod,$(EBTABLES_IP6-m),$(LINUX_DIR)/net/$(mod).$(LINUX_KMOD_SUFFIX))
425   KCONFIG:=$(KCONFIG_EBTABLES_IP6)
426   AUTOLOAD:=$(call AutoLoad,49,$(notdir $(EBTABLES_IP6-m)))
427 endef
428
429 define KernelPackage/ebtables-ipv6/description
430  This option adds the IPv6 support to ebtables, which allows basic
431  IPv6 header field filtering and target support.
432 endef
433
434 $(eval $(call KernelPackage,ebtables-ipv6))
435
436 define KernelPackage/ebtables-watchers
437   SUBMENU:=$(NF_MENU)
438   TITLE:=ebtables: watchers support
439   DEPENDS:= kmod-ebtables
440   FILES:=$(foreach mod,$(EBTABLES_WATCHERS-m),$(LINUX_DIR)/net/$(mod).$(LINUX_KMOD_SUFFIX))
441   KCONFIG:=$(KCONFIG_EBTABLES_WATCHERS)
442   AUTOLOAD:=$(call AutoLoad,49,$(notdir $(EBTABLES_WATCHERS-m)))
443 endef
444
445 define KernelPackage/ebtables-watchers/description
446  This option adds the log watchers, that you can use in any rule
447  in any ebtables table.
448 endef
449
450 $(eval $(call KernelPackage,ebtables-watchers))
451
452 define KernelPackage/nfnetlink
453   SUBMENU:=$(NF_MENU)
454   TITLE:=Netlink-based userspace interface
455   DEPENDS:=@LINUX_2_6 +kmod-ipt-core
456   FILES:=$(LINUX_DIR)/net/netfilter/nfnetlink.$(LINUX_KMOD_SUFFIX)
457   KCONFIG:=CONFIG_NETFILTER_NETLINK
458   AUTOLOAD:=$(call AutoLoad,48,nfnetlink)
459 endef
460
461 define KernelPackage/nfnetlink/description
462  Kernel modules support for a netlink-based userspace interface
463 endef
464
465 $(eval $(call KernelPackage,nfnetlink))
466
467
468 define KernelPackage/nfnetlink-log
469   SUBMENU:=$(NF_MENU)
470   TITLE:=Netfilter LOG over NFNETLINK interface
471   DEPENDS:=@LINUX_2_6 +kmod-nfnetlink
472   FILES:=$(LINUX_DIR)/net/netfilter/nfnetlink_log.$(LINUX_KMOD_SUFFIX)
473   KCONFIG:=CONFIG_NETFILTER_NETLINK_LOG
474   AUTOLOAD:=$(call AutoLoad,48,nfnetlink_log)
475 endef
476
477 define KernelPackage/nfnetlink-log/description
478  Kernel modules support for logging packets via NFNETLINK
479 endef
480
481 $(eval $(call KernelPackage,nfnetlink-log))
482
483
484 define KernelPackage/nfnetlink-queue
485   SUBMENU:=$(NF_MENU)
486   TITLE:=Netfilter QUEUE over NFNETLINK interface
487   DEPENDS:=@LINUX_2_6 +kmod-nfnetlink
488   FILES:=$(LINUX_DIR)/net/netfilter/nfnetlink_queue.$(LINUX_KMOD_SUFFIX)
489   KCONFIG:=CONFIG_NETFILTER_NETLINK_QUEUE
490   AUTOLOAD:=$(call AutoLoad,48,nfnetlink_queue)
491 endef
492
493 define KernelPackage/nfnetlink-queue/description
494  Kernel modules support for queueing packets via NFNETLINK
495 endef
496
497 $(eval $(call KernelPackage,nfnetlink-queue))
498
499
500 define KernelPackage/nf-conntrack-netlink
501   SUBMENU:=$(NF_MENU)
502   TITLE:=Connection tracking netlink interface
503   DEPENDS:=@LINUX_2_6 +kmod-nfnetlink +kmod-ipt-conntrack
504   FILES:=$(LINUX_DIR)/net/netfilter/nf_conntrack_netlink.$(LINUX_KMOD_SUFFIX)
505   KCONFIG:=CONFIG_NF_CT_NETLINK
506   AUTOLOAD:=$(call AutoLoad,49,nf_conntrack_netlink)
507 endef
508
509 define KernelPackage/nf-conntrack-netlink/description
510  Kernel modules support for a netlink-based connection tracking 
511  userspace interface
512 endef
513
514 $(eval $(call KernelPackage,nf-conntrack-netlink))