ccbd20a64349bcd0ba129f7a71bee4d67f54bfd5
[openwrt/openwrt.git] / package / kernel / linux / modules / netfilter.mk
1
2 #
3 # Copyright (C) 2006-2010 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
14 define KernelPackage/nf-ipt
15 SUBMENU:=$(NF_MENU)
16 TITLE:=Iptables core
17 KCONFIG:= \
18 CONFIG_NETFILTER=y \
19 CONFIG_NETFILTER_ADVANCED=y \
20 $(KCONFIG_NF_IPT)
21 FILES:=$(foreach mod,$(NF_IPT-m),$(LINUX_DIR)/net/$(mod).ko)
22 AUTOLOAD:=$(call AutoProbe,$(notdir $(NF_IPT-m)))
23 endef
24
25 $(eval $(call KernelPackage,nf-ipt))
26
27
28 define KernelPackage/nf-ipt6
29 SUBMENU:=$(NF_MENU)
30 TITLE:=Ip6tables core
31 KCONFIG:=$(KCONFIG_NF_IPT6)
32 FILES:=$(foreach mod,$(NF_IPT6-m),$(LINUX_DIR)/net/$(mod).ko)
33 AUTOLOAD:=$(call AutoProbe,$(notdir $(NF_IPT6-m)))
34 DEPENDS:=+kmod-nf-ipt +kmod-nf-conntrack6
35 endef
36
37 $(eval $(call KernelPackage,nf-ipt6))
38
39
40
41 define KernelPackage/ipt-core
42 SUBMENU:=$(NF_MENU)
43 TITLE:=Iptables core
44 KCONFIG:=$(KCONFIG_IPT_CORE)
45 FILES:=$(foreach mod,$(IPT_CORE-m),$(LINUX_DIR)/net/$(mod).ko)
46 AUTOLOAD:=$(call AutoProbe,$(notdir $(IPT_CORE-m)))
47 DEPENDS:=+kmod-nf-ipt
48 endef
49
50 define KernelPackage/ipt-core/description
51 Netfilter core kernel modules
52 Includes:
53 - comment
54 - limit
55 - LOG
56 - mac
57 - multiport
58 - REJECT
59 - TCPMSS
60 endef
61
62 $(eval $(call KernelPackage,ipt-core))
63
64
65 define KernelPackage/nf-conntrack
66 SUBMENU:=$(NF_MENU)
67 TITLE:=Netfilter connection tracking
68 KCONFIG:= \
69 CONFIG_NETFILTER=y \
70 CONFIG_NETFILTER_ADVANCED=y \
71 CONFIG_NF_CONNTRACK_ZONES=y \
72 $(KCONFIG_NF_CONNTRACK)
73 FILES:=$(foreach mod,$(NF_CONNTRACK-m),$(LINUX_DIR)/net/$(mod).ko)
74 AUTOLOAD:=$(call AutoProbe,$(notdir $(NF_CONNTRACK-m)))
75 endef
76
77 $(eval $(call KernelPackage,nf-conntrack))
78
79
80 define KernelPackage/nf-conntrack6
81 SUBMENU:=$(NF_MENU)
82 TITLE:=Netfilter IPv6 connection tracking
83 KCONFIG:=$(KCONFIG_NF_CONNTRACK6)
84 DEPENDS:=@IPV6 +kmod-nf-conntrack
85 FILES:=$(foreach mod,$(NF_CONNTRACK6-m),$(LINUX_DIR)/net/$(mod).ko)
86 AUTOLOAD:=$(call AutoProbe,$(notdir $(NF_CONNTRACK6-m)))
87 endef
88
89 $(eval $(call KernelPackage,nf-conntrack6))
90
91
92 define KernelPackage/nf-nat
93 SUBMENU:=$(NF_MENU)
94 TITLE:=Netfilter NAT
95 KCONFIG:=$(KCONFIG_NF_NAT)
96 DEPENDS:=+kmod-nf-conntrack +kmod-nf-ipt
97 FILES:=$(foreach mod,$(NF_NAT-m),$(LINUX_DIR)/net/$(mod).ko)
98 AUTOLOAD:=$(call AutoProbe,$(notdir $(NF_NAT-m)))
99 endef
100
101 $(eval $(call KernelPackage,nf-nat))
102
103
104 define KernelPackage/nf-nat6
105 SUBMENU:=$(NF_MENU)
106 TITLE:=Netfilter IPV6-NAT
107 KCONFIG:=$(KCONFIG_NF_NAT6)
108 DEPENDS:=+kmod-nf-conntrack6 +kmod-nf-ipt6 +kmod-nf-nat
109 FILES:=$(foreach mod,$(NF_NAT6-m),$(LINUX_DIR)/net/$(mod).ko)
110 AUTOLOAD:=$(call AutoProbe,$(notdir $(NF_NAT6-m)))
111 endef
112
113 $(eval $(call KernelPackage,nf-nat6))
114
115
116 define AddDepends/ipt
117 SUBMENU:=$(NF_MENU)
118 DEPENDS+= +kmod-ipt-core $(1)
119 endef
120
121
122 define KernelPackage/ipt-conntrack
123 TITLE:=Basic connection tracking modules
124 KCONFIG:=$(KCONFIG_IPT_CONNTRACK)
125 FILES:=$(foreach mod,$(IPT_CONNTRACK-m),$(LINUX_DIR)/net/$(mod).ko)
126 AUTOLOAD:=$(call AutoProbe,$(notdir $(IPT_CONNTRACK-m)))
127 $(call AddDepends/ipt,+kmod-nf-conntrack)
128 endef
129
130 define KernelPackage/ipt-conntrack/description
131 Netfilter (IPv4) kernel modules for connection tracking
132 Includes:
133 - conntrack
134 - defrag
135 - iptables_raw
136 - NOTRACK
137 - state
138 endef
139
140 $(eval $(call KernelPackage,ipt-conntrack))
141
142
143 define KernelPackage/ipt-conntrack-extra
144 TITLE:=Extra connection tracking modules
145 KCONFIG:=$(KCONFIG_IPT_CONNTRACK_EXTRA)
146 FILES:=$(foreach mod,$(IPT_CONNTRACK_EXTRA-m),$(LINUX_DIR)/net/$(mod).ko)
147 AUTOLOAD:=$(call AutoProbe,$(notdir $(IPT_CONNTRACK_EXTRA-m)))
148 $(call AddDepends/ipt,+kmod-ipt-conntrack)
149 endef
150
151 define KernelPackage/ipt-conntrack-extra/description
152 Netfilter (IPv4) extra kernel modules for connection tracking
153 Includes:
154 - connbytes
155 - connmark/CONNMARK
156 - conntrack
157 - helper
158 - recent
159 endef
160
161 $(eval $(call KernelPackage,ipt-conntrack-extra))
162
163
164 define KernelPackage/ipt-filter
165 TITLE:=Modules for packet content inspection
166 KCONFIG:=$(KCONFIG_IPT_FILTER)
167 FILES:=$(foreach mod,$(IPT_FILTER-m),$(LINUX_DIR)/net/$(mod).ko)
168 AUTOLOAD:=$(call AutoProbe,$(notdir $(IPT_FILTER-m)))
169 $(call AddDepends/ipt,+kmod-lib-textsearch +kmod-ipt-conntrack)
170 endef
171
172 define KernelPackage/ipt-filter/description
173 Netfilter (IPv4) kernel modules for packet content inspection
174 Includes:
175 - string
176 endef
177
178 $(eval $(call KernelPackage,ipt-filter))
179
180
181 define KernelPackage/ipt-ipopt
182 TITLE:=Modules for matching/changing IP packet options
183 KCONFIG:=$(KCONFIG_IPT_IPOPT)
184 FILES:=$(foreach mod,$(IPT_IPOPT-m),$(LINUX_DIR)/net/$(mod).ko)
185 AUTOLOAD:=$(call AutoProbe,$(notdir $(IPT_IPOPT-m)))
186 $(call AddDepends/ipt)
187 endef
188
189 define KernelPackage/ipt-ipopt/description
190 Netfilter (IPv4) modules for matching/changing IP packet options
191 Includes:
192 - CLASSIFY
193 - dscp/DSCP
194 - ecn/ECN
195 - hl/HL
196 - length
197 - mark/MARK
198 - statistic
199 - tcpmss
200 - time
201 - ttl/TTL
202 - unclean
203 endef
204
205 $(eval $(call KernelPackage,ipt-ipopt))
206
207
208 define KernelPackage/ipt-ipsec
209 TITLE:=Modules for matching IPSec packets
210 KCONFIG:=$(KCONFIG_IPT_IPSEC)
211 FILES:=$(foreach mod,$(IPT_IPSEC-m),$(LINUX_DIR)/net/$(mod).ko)
212 AUTOLOAD:=$(call AutoProbe,$(notdir $(IPT_IPSEC-m)))
213 $(call AddDepends/ipt)
214 endef
215
216 define KernelPackage/ipt-ipsec/description
217 Netfilter (IPv4) modules for matching IPSec packets
218 Includes:
219 - ah
220 - esp
221 - policy
222 endef
223
224 $(eval $(call KernelPackage,ipt-ipsec))
225
226 IPSET_MODULES:= \
227 ipset/ip_set \
228 ipset/ip_set_bitmap_ip \
229 ipset/ip_set_bitmap_ipmac \
230 ipset/ip_set_bitmap_port \
231 ipset/ip_set_hash_ip \
232 ipset/ip_set_hash_ipmark \
233 ipset/ip_set_hash_ipport \
234 ipset/ip_set_hash_ipportip \
235 ipset/ip_set_hash_ipportnet \
236 ipset/ip_set_hash_mac \
237 ipset/ip_set_hash_netportnet \
238 ipset/ip_set_hash_net \
239 ipset/ip_set_hash_netnet \
240 ipset/ip_set_hash_netport \
241 ipset/ip_set_hash_netiface \
242 ipset/ip_set_list_set \
243 xt_set
244
245 define KernelPackage/ipt-ipset
246 SUBMENU:=Netfilter Extensions
247 TITLE:=IPset netfilter modules
248 DEPENDS+= +kmod-ipt-core +kmod-nfnetlink
249 KCONFIG:= \
250 CONFIG_IP_SET \
251 CONFIG_IP_SET_MAX=256 \
252 CONFIG_NETFILTER_XT_SET \
253 CONFIG_IP_SET_BITMAP_IP \
254 CONFIG_IP_SET_BITMAP_IPMAC \
255 CONFIG_IP_SET_BITMAP_PORT \
256 CONFIG_IP_SET_HASH_IP \
257 CONFIG_IP_SET_HASH_IPMARK \
258 CONFIG_IP_SET_HASH_IPPORT \
259 CONFIG_IP_SET_HASH_IPPORTIP \
260 CONFIG_IP_SET_HASH_IPPORTNET \
261 CONFIG_IP_SET_HASH_MAC \
262 CONFIG_IP_SET_HASH_NET \
263 CONFIG_IP_SET_HASH_NETNET \
264 CONFIG_IP_SET_HASH_NETIFACE \
265 CONFIG_IP_SET_HASH_NETPORT \
266 CONFIG_IP_SET_HASH_NETPORTNET \
267 CONFIG_IP_SET_LIST_SET \
268 CONFIG_NET_EMATCH_IPSET=n
269 FILES:=$(foreach mod,$(IPSET_MODULES),$(LINUX_DIR)/net/netfilter/$(mod).ko)
270 AUTOLOAD:=$(call AutoLoad,49,$(notdir $(IPSET_MODULES)))
271 endef
272 $(eval $(call KernelPackage,ipt-ipset))
273
274
275 define KernelPackage/ipt-nat
276 TITLE:=Basic NAT targets
277 KCONFIG:=$(KCONFIG_IPT_NAT)
278 FILES:=$(foreach mod,$(IPT_NAT-m),$(LINUX_DIR)/net/$(mod).ko)
279 AUTOLOAD:=$(call AutoProbe,$(notdir $(IPT_NAT-m)))
280 $(call AddDepends/ipt,+kmod-nf-nat)
281 endef
282
283 define KernelPackage/ipt-nat/description
284 Netfilter (IPv4) kernel modules for basic NAT targets
285 Includes:
286 - MASQUERADE
287 endef
288
289 $(eval $(call KernelPackage,ipt-nat))
290
291
292 define KernelPackage/ipt-nat6
293 TITLE:=IPv6 NAT targets
294 KCONFIG:=$(KCONFIG_IPT_NAT6)
295 FILES:=$(foreach mod,$(IPT_NAT6-m),$(LINUX_DIR)/net/$(mod).ko)
296 AUTOLOAD:=$(call AutoLoad,43,$(notdir $(IPT_NAT6-m)))
297 $(call AddDepends/ipt,+kmod-nf-nat6)
298 $(call AddDepends/ipt,+kmod-ipt-conntrack)
299 $(call AddDepends/ipt,+kmod-ipt-nat)
300 $(call AddDepends/ipt,+kmod-ip6tables)
301 endef
302
303 define KernelPackage/ipt-nat6/description
304 Netfilter (IPv6) kernel modules for NAT targets
305 endef
306
307 $(eval $(call KernelPackage,ipt-nat6))
308
309
310 define KernelPackage/ipt-nat-extra
311 TITLE:=Extra NAT targets
312 KCONFIG:=$(KCONFIG_IPT_NAT_EXTRA)
313 FILES:=$(foreach mod,$(IPT_NAT_EXTRA-m),$(LINUX_DIR)/net/$(mod).ko)
314 AUTOLOAD:=$(call AutoProbe,$(notdir $(IPT_NAT_EXTRA-m)))
315 $(call AddDepends/ipt,+kmod-ipt-nat)
316 endef
317
318 define KernelPackage/ipt-nat-extra/description
319 Netfilter (IPv4) kernel modules for extra NAT targets
320 Includes:
321 - NETMAP
322 - REDIRECT
323 endef
324
325 $(eval $(call KernelPackage,ipt-nat-extra))
326
327
328 define KernelPackage/nf-nathelper
329 SUBMENU:=$(NF_MENU)
330 TITLE:=Basic Conntrack and NAT helpers
331 KCONFIG:=$(KCONFIG_NF_NATHELPER)
332 FILES:=$(foreach mod,$(NF_NATHELPER-m),$(LINUX_DIR)/net/$(mod).ko)
333 AUTOLOAD:=$(call AutoProbe,$(notdir $(NF_NATHELPER-m)))
334 DEPENDS:=+kmod-nf-nat
335 endef
336
337 define KernelPackage/nf-nathelper/description
338 Default Netfilter (IPv4) Conntrack and NAT helpers
339 Includes:
340 - ftp
341 - irc
342 - tftp
343 endef
344
345 $(eval $(call KernelPackage,nf-nathelper))
346
347
348 define KernelPackage/nf-nathelper-extra
349 SUBMENU:=$(NF_MENU)
350 TITLE:=Extra Conntrack and NAT helpers
351 KCONFIG:=$(KCONFIG_NF_NATHELPER_EXTRA)
352 FILES:=$(foreach mod,$(NF_NATHELPER_EXTRA-m),$(LINUX_DIR)/net/$(mod).ko)
353 AUTOLOAD:=$(call AutoProbe,$(notdir $(NF_NATHELPER_EXTRA-m)))
354 DEPENDS:=+kmod-nf-nat +kmod-lib-textsearch
355 endef
356
357 define KernelPackage/nf-nathelper-extra/description
358 Extra Netfilter (IPv4) Conntrack and NAT helpers
359 Includes:
360 - amanda
361 - h323
362 - mms
363 - pptp
364 - proto_gre
365 - sip
366 - snmp_basic
367 - broadcast
368 endef
369
370 $(eval $(call KernelPackage,nf-nathelper-extra))
371
372
373 define KernelPackage/ipt-ulog
374 TITLE:=Module for user-space packet logging
375 KCONFIG:=$(KCONFIG_IPT_ULOG)
376 FILES:=$(foreach mod,$(IPT_ULOG-m),$(LINUX_DIR)/net/$(mod).ko)
377 AUTOLOAD:=$(call AutoProbe,$(notdir $(IPT_ULOG-m)))
378 $(call AddDepends/ipt)
379 endef
380
381 define KernelPackage/ipt-ulog/description
382 Netfilter (IPv4) module for user-space packet logging
383 Includes:
384 - ULOG
385 endef
386
387 $(eval $(call KernelPackage,ipt-ulog))
388
389
390 define KernelPackage/ipt-nflog
391 TITLE:=Module for user-space packet logging
392 KCONFIG:=$(KCONFIG_IPT_NFLOG)
393 FILES:=$(foreach mod,$(IPT_NFLOG-m),$(LINUX_DIR)/net/$(mod).ko)
394 AUTOLOAD:=$(call AutoProbe,$(notdir $(IPT_NFLOG-m)))
395 $(call AddDepends/ipt,+kmod-nfnetlink-log)
396 endef
397
398 define KernelPackage/ipt-nflog/description
399 Netfilter module for user-space packet logging
400 Includes:
401 - NFLOG
402 endef
403
404 $(eval $(call KernelPackage,ipt-nflog))
405
406
407 define KernelPackage/ipt-nfqueue
408 TITLE:=Module for user-space packet queuing
409 KCONFIG:=$(KCONFIG_IPT_NFQUEUE)
410 FILES:=$(foreach mod,$(IPT_NFQUEUE-m),$(LINUX_DIR)/net/$(mod).ko)
411 AUTOLOAD:=$(call AutoProbe,$(notdir $(IPT_NFQUEUE-m)))
412 $(call AddDepends/ipt,+kmod-nfnetlink-queue)
413 endef
414
415 define KernelPackage/ipt-nfqueue/description
416 Netfilter module for user-space packet queuing
417 Includes:
418 - NFQUEUE
419 endef
420
421 $(eval $(call KernelPackage,ipt-nfqueue))
422
423
424 define KernelPackage/ipt-debug
425 TITLE:=Module for debugging/development
426 KCONFIG:=$(KCONFIG_IPT_DEBUG)
427 DEFAULT:=n
428 FILES:=$(foreach mod,$(IPT_DEBUG-m),$(LINUX_DIR)/net/$(mod).ko)
429 AUTOLOAD:=$(call AutoProbe,$(notdir $(IPT_DEBUG-m)))
430 $(call AddDepends/ipt)
431 endef
432
433 define KernelPackage/ipt-debug/description
434 Netfilter modules for debugging/development of the firewall
435 Includes:
436 - TRACE
437 endef
438
439 $(eval $(call KernelPackage,ipt-debug))
440
441
442 define KernelPackage/ipt-led
443 TITLE:=Module to trigger a LED with a Netfilter rule
444 KCONFIG:=$(KCONFIG_IPT_LED)
445 FILES:=$(foreach mod,$(IPT_LED-m),$(LINUX_DIR)/net/$(mod).ko)
446 AUTOLOAD:=$(call AutoProbe,$(notdir $(IPT_LED-m)))
447 $(call AddDepends/ipt)
448 endef
449
450 define KernelPackage/ipt-led/description
451 Netfilter target to trigger a LED when a network packet is matched.
452 endef
453
454 $(eval $(call KernelPackage,ipt-led))
455
456 define KernelPackage/ipt-tproxy
457 TITLE:=Transparent proxying support
458 DEPENDS+=+kmod-ipt-conntrack +IPV6:kmod-ip6tables
459 KCONFIG:= \
460 CONFIG_NETFILTER_TPROXY \
461 CONFIG_NETFILTER_XT_MATCH_SOCKET \
462 CONFIG_NETFILTER_XT_TARGET_TPROXY
463 FILES:= \
464 $(foreach mod,$(IPT_TPROXY-m),$(LINUX_DIR)/net/$(mod).ko)
465 AUTOLOAD:=$(call AutoProbe,$(notdir nf_tproxy_core $(IPT_TPROXY-m)))
466 $(call AddDepends/ipt)
467 endef
468
469 define KernelPackage/ipt-tproxy/description
470 Kernel modules for Transparent Proxying
471 endef
472
473 $(eval $(call KernelPackage,ipt-tproxy))
474
475 define KernelPackage/ipt-tee
476 TITLE:=TEE support
477 DEPENDS:=+kmod-ipt-conntrack @!LINUX_4_4
478 KCONFIG:= \
479 CONFIG_NETFILTER_XT_TARGET_TEE
480 FILES:= \
481 $(LINUX_DIR)/net/netfilter/xt_TEE.ko \
482 $(foreach mod,$(IPT_TEE-m),$(LINUX_DIR)/net/$(mod).ko)
483 AUTOLOAD:=$(call AutoProbe,$(notdir nf_tee $(IPT_TEE-m)))
484 $(call AddDepends/ipt)
485 endef
486
487 define KernelPackage/ipt-tee/description
488 Kernel modules for TEE
489 endef
490
491 $(eval $(call KernelPackage,ipt-tee))
492
493
494 define KernelPackage/ipt-u32
495 TITLE:=U32 support
496 KCONFIG:= \
497 CONFIG_NETFILTER_XT_MATCH_U32
498 FILES:= \
499 $(LINUX_DIR)/net/netfilter/xt_u32.ko \
500 $(foreach mod,$(IPT_U32-m),$(LINUX_DIR)/net/$(mod).ko)
501 AUTOLOAD:=$(call AutoProbe,$(notdir nf_tee $(IPT_U32-m)))
502 $(call AddDepends/ipt)
503 endef
504
505 define KernelPackage/ipt-u32/description
506 Kernel modules for U32
507 endef
508
509 $(eval $(call KernelPackage,ipt-u32))
510
511
512 define KernelPackage/ipt-iprange
513 TITLE:=Module for matching ip ranges
514 KCONFIG:=$(KCONFIG_IPT_IPRANGE)
515 FILES:=$(foreach mod,$(IPT_IPRANGE-m),$(LINUX_DIR)/net/$(mod).ko)
516 AUTOLOAD:=$(call AutoProbe,$(notdir $(IPT_IPRANGE-m)))
517 $(call AddDepends/ipt)
518 endef
519
520 define KernelPackage/ipt-iprange/description
521 Netfilter (IPv4) module for matching ip ranges
522 Includes:
523 - iprange
524 endef
525
526 $(eval $(call KernelPackage,ipt-iprange))
527
528 define KernelPackage/ipt-cluster
529 TITLE:=Module for matching cluster
530 KCONFIG:=$(KCONFIG_IPT_CLUSTER)
531 FILES:=$(foreach mod,$(IPT_CLUSTER-m),$(LINUX_DIR)/net/$(mod).ko)
532 AUTOLOAD:=$(call AutoProbe,$(notdir $(IPT_CLUSTER-m)))
533 $(call AddDepends/ipt)
534 endef
535
536 define KernelPackage/ipt-cluster/description
537 Netfilter (IPv4/IPv6) module for matching cluster
538 This option allows you to build work-load-sharing clusters of
539 network servers/stateful firewalls without having a dedicated
540 load-balancing router/server/switch. Basically, this match returns
541 true when the packet must be handled by this cluster node. Thus,
542 all nodes see all packets and this match decides which node handles
543 what packets. The work-load sharing algorithm is based on source
544 address hashing.
545
546 This module is usable for ipv4 and ipv6.
547
548 To use it also enable iptables-mod-cluster
549
550 see `iptables -m cluster --help` for more information.
551 endef
552
553 $(eval $(call KernelPackage,ipt-cluster))
554
555 define KernelPackage/ipt-clusterip
556 TITLE:=Module for CLUSTERIP
557 KCONFIG:=$(KCONFIG_IPT_CLUSTERIP)
558 FILES:=$(foreach mod,$(IPT_CLUSTERIP-m),$(LINUX_DIR)/net/$(mod).ko)
559 AUTOLOAD:=$(call AutoProbe,$(notdir $(IPT_CLUSTERIP-m)))
560 $(call AddDepends/ipt,+kmod-nf-conntrack)
561 endef
562
563 define KernelPackage/ipt-clusterip/description
564 Netfilter (IPv4-only) module for CLUSTERIP
565 The CLUSTERIP target allows you to build load-balancing clusters of
566 network servers without having a dedicated load-balancing
567 router/server/switch.
568
569 To use it also enable iptables-mod-clusterip
570
571 see `iptables -j CLUSTERIP --help` for more information.
572 endef
573
574 $(eval $(call KernelPackage,ipt-clusterip))
575
576
577 define KernelPackage/ipt-extra
578 TITLE:=Extra modules
579 KCONFIG:=$(KCONFIG_IPT_EXTRA)
580 FILES:=$(foreach mod,$(IPT_EXTRA-m),$(LINUX_DIR)/net/$(mod).ko)
581 AUTOLOAD:=$(call AutoProbe,$(notdir $(IPT_EXTRA-m)))
582 $(call AddDepends/ipt,+kmod-br-netfilter)
583 endef
584
585 define KernelPackage/ipt-extra/description
586 Other Netfilter (IPv4) kernel modules
587 Includes:
588 - addrtype
589 - owner
590 - physdev (if bridge support was enabled in kernel)
591 - pkttype
592 - quota
593 endef
594
595 $(eval $(call KernelPackage,ipt-extra))
596
597
598 define KernelPackage/ip6tables
599 SUBMENU:=$(NF_MENU)
600 TITLE:=IPv6 modules
601 DEPENDS:=+kmod-nf-ipt6 +kmod-ipt-core +kmod-ipt-conntrack
602 KCONFIG:=$(KCONFIG_IPT_IPV6)
603 FILES:=$(foreach mod,$(IPT_IPV6-m),$(LINUX_DIR)/net/$(mod).ko)
604 AUTOLOAD:=$(call AutoLoad,42,$(notdir $(IPT_IPV6-m)))
605 endef
606
607 define KernelPackage/ip6tables/description
608 Netfilter IPv6 firewalling support
609 endef
610
611 $(eval $(call KernelPackage,ip6tables))
612
613 define KernelPackage/ip6tables-extra
614 SUBMENU:=$(NF_MENU)
615 TITLE:=Extra IPv6 modules
616 DEPENDS:=+kmod-ip6tables
617 KCONFIG:=$(KCONFIG_IPT_IPV6_EXTRA)
618 FILES:=$(foreach mod,$(IPT_IPV6_EXTRA-m),$(LINUX_DIR)/net/$(mod).ko)
619 AUTOLOAD:=$(call AutoLoad,43,$(notdir $(IPT_IPV6_EXTRA-m)))
620 endef
621
622 define KernelPackage/ip6tables-extra/description
623 Netfilter IPv6 extra header matching modules
624 endef
625
626 $(eval $(call KernelPackage,ip6tables-extra))
627
628 ARP_MODULES = arp_tables arpt_mangle arptable_filter
629 define KernelPackage/arptables
630 SUBMENU:=$(NF_MENU)
631 TITLE:=ARP firewalling modules
632 DEPENDS:=+kmod-ipt-core
633 FILES:=$(LINUX_DIR)/net/ipv4/netfilter/arp*.ko
634 KCONFIG:=CONFIG_IP_NF_ARPTABLES \
635 CONFIG_IP_NF_ARPFILTER \
636 CONFIG_IP_NF_ARP_MANGLE
637 AUTOLOAD:=$(call AutoProbe,$(ARP_MODULES))
638 endef
639
640 define KernelPackage/arptables/description
641 Kernel modules for ARP firewalling
642 endef
643
644 $(eval $(call KernelPackage,arptables))
645
646
647 define KernelPackage/br-netfilter
648 SUBMENU:=$(NF_MENU)
649 TITLE:=Bridge netfilter support modules
650 HIDDEN:=1
651 DEPENDS:=+kmod-ipt-core +kmod-bridge
652 FILES:=$(LINUX_DIR)/net/bridge/br_netfilter.ko
653 KCONFIG:=CONFIG_BRIDGE_NETFILTER
654 AUTOLOAD:=$(call AutoProbe,br_netfilter)
655 endef
656
657 $(eval $(call KernelPackage,br-netfilter))
658
659
660 define KernelPackage/ebtables
661 SUBMENU:=$(NF_MENU)
662 TITLE:=Bridge firewalling modules
663 DEPENDS:=+kmod-ipt-core +kmod-bridge +kmod-br-netfilter
664 FILES:=$(foreach mod,$(EBTABLES-m),$(LINUX_DIR)/net/$(mod).ko)
665 KCONFIG:=$(KCONFIG_EBTABLES)
666 AUTOLOAD:=$(call AutoProbe,$(notdir $(EBTABLES-m)))
667 endef
668
669 define KernelPackage/ebtables/description
670 ebtables is a general, extensible frame/packet identification
671 framework. It provides you to do Ethernet
672 filtering/NAT/brouting on the Ethernet bridge.
673 endef
674
675 $(eval $(call KernelPackage,ebtables))
676
677
678 define AddDepends/ebtables
679 SUBMENU:=$(NF_MENU)
680 DEPENDS+=kmod-ebtables $(1)
681 endef
682
683
684 define KernelPackage/ebtables-ipv4
685 TITLE:=ebtables: IPv4 support
686 FILES:=$(foreach mod,$(EBTABLES_IP4-m),$(LINUX_DIR)/net/$(mod).ko)
687 KCONFIG:=$(KCONFIG_EBTABLES_IP4)
688 AUTOLOAD:=$(call AutoProbe,$(notdir $(EBTABLES_IP4-m)))
689 $(call AddDepends/ebtables)
690 endef
691
692 define KernelPackage/ebtables-ipv4/description
693 This option adds the IPv4 support to ebtables, which allows basic
694 IPv4 header field filtering, ARP filtering as well as SNAT, DNAT targets.
695 endef
696
697 $(eval $(call KernelPackage,ebtables-ipv4))
698
699
700 define KernelPackage/ebtables-ipv6
701 TITLE:=ebtables: IPv6 support
702 FILES:=$(foreach mod,$(EBTABLES_IP6-m),$(LINUX_DIR)/net/$(mod).ko)
703 KCONFIG:=$(KCONFIG_EBTABLES_IP6)
704 AUTOLOAD:=$(call AutoProbe,$(notdir $(EBTABLES_IP6-m)))
705 $(call AddDepends/ebtables)
706 endef
707
708 define KernelPackage/ebtables-ipv6/description
709 This option adds the IPv6 support to ebtables, which allows basic
710 IPv6 header field filtering and target support.
711 endef
712
713 $(eval $(call KernelPackage,ebtables-ipv6))
714
715
716 define KernelPackage/ebtables-watchers
717 TITLE:=ebtables: watchers support
718 FILES:=$(foreach mod,$(EBTABLES_WATCHERS-m),$(LINUX_DIR)/net/$(mod).ko)
719 KCONFIG:=$(KCONFIG_EBTABLES_WATCHERS)
720 AUTOLOAD:=$(call AutoProbe,$(notdir $(EBTABLES_WATCHERS-m)))
721 $(call AddDepends/ebtables)
722 endef
723
724 define KernelPackage/ebtables-watchers/description
725 This option adds the log watchers, that you can use in any rule
726 in any ebtables table.
727 endef
728
729 $(eval $(call KernelPackage,ebtables-watchers))
730
731
732 define KernelPackage/nfnetlink
733 SUBMENU:=$(NF_MENU)
734 TITLE:=Netlink-based userspace interface
735 FILES:=$(foreach mod,$(NFNETLINK-m),$(LINUX_DIR)/net/$(mod).ko)
736 KCONFIG:=$(KCONFIG_NFNETLINK)
737 AUTOLOAD:=$(call AutoProbe,$(notdir $(NFNETLINK-m)))
738 endef
739
740 define KernelPackage/nfnetlink/description
741 Kernel modules support for a netlink-based userspace interface
742 endef
743
744 $(eval $(call KernelPackage,nfnetlink))
745
746
747 define AddDepends/nfnetlink
748 SUBMENU:=$(NF_MENU)
749 DEPENDS+=+kmod-nfnetlink $(1)
750 endef
751
752
753 define KernelPackage/nfnetlink-log
754 TITLE:=Netfilter LOG over NFNETLINK interface
755 FILES:=$(foreach mod,$(NFNETLINK_LOG-m),$(LINUX_DIR)/net/$(mod).ko)
756 KCONFIG:=$(KCONFIG_NFNETLINK_LOG)
757 AUTOLOAD:=$(call AutoProbe,$(notdir $(NFNETLINK_LOG-m)))
758 $(call AddDepends/nfnetlink)
759 endef
760
761 define KernelPackage/nfnetlink-log/description
762 Kernel modules support for logging packets via NFNETLINK
763 Includes:
764 - NFLOG
765 endef
766
767 $(eval $(call KernelPackage,nfnetlink-log))
768
769
770 define KernelPackage/nfnetlink-queue
771 TITLE:=Netfilter QUEUE over NFNETLINK interface
772 FILES:=$(foreach mod,$(NFNETLINK_QUEUE-m),$(LINUX_DIR)/net/$(mod).ko)
773 KCONFIG:=$(KCONFIG_NFNETLINK_QUEUE)
774 AUTOLOAD:=$(call AutoProbe,$(notdir $(NFNETLINK_QUEUE-m)))
775 $(call AddDepends/nfnetlink)
776 endef
777
778 define KernelPackage/nfnetlink-queue/description
779 Kernel modules support for queueing packets via NFNETLINK
780 Includes:
781 - NFQUEUE
782 endef
783
784 $(eval $(call KernelPackage,nfnetlink-queue))
785
786
787 define KernelPackage/nf-conntrack-netlink
788 TITLE:=Connection tracking netlink interface
789 FILES:=$(LINUX_DIR)/net/netfilter/nf_conntrack_netlink.ko
790 KCONFIG:=CONFIG_NF_CT_NETLINK CONFIG_NF_CONNTRACK_EVENTS=y
791 AUTOLOAD:=$(call AutoProbe,nf_conntrack_netlink)
792 $(call AddDepends/nfnetlink,+kmod-ipt-conntrack)
793 endef
794
795 define KernelPackage/nf-conntrack-netlink/description
796 Kernel modules support for a netlink-based connection tracking
797 userspace interface
798 endef
799
800 $(eval $(call KernelPackage,nf-conntrack-netlink))
801
802 define KernelPackage/ipt-hashlimit
803 SUBMENU:=$(NF_MENU)
804 TITLE:=Netfilter hashlimit match
805 DEPENDS:=+kmod-ipt-core
806 KCONFIG:=$(KCONFIG_IPT_HASHLIMIT)
807 FILES:=$(LINUX_DIR)/net/netfilter/xt_hashlimit.ko
808 AUTOLOAD:=$(call AutoProbe,xt_hashlimit)
809 $(call KernelPackage/ipt)
810 endef
811
812 define KernelPackage/ipt-hashlimit/description
813 Kernel modules support for the hashlimit bucket match module
814 endef
815
816 $(eval $(call KernelPackage,ipt-hashlimit))
817
818
819 define KernelPackage/nft-core
820 SUBMENU:=$(NF_MENU)
821 TITLE:=Netfilter nf_tables support
822 DEPENDS:=+kmod-nfnetlink +kmod-nf-conntrack6
823 FILES:=$(foreach mod,$(NFT_CORE-m),$(LINUX_DIR)/net/$(mod).ko)
824 AUTOLOAD:=$(call AutoProbe,$(notdir $(NFT_CORE-m)))
825 KCONFIG:= \
826 CONFIG_NETFILTER=y \
827 CONFIG_NETFILTER_ADVANCED=y \
828 CONFIG_NFT_COMPAT=n \
829 CONFIG_NFT_QUEUE=n \
830 CONFIG_NF_TABLES_ARP=n \
831 CONFIG_NF_TABLES_BRIDGE=n \
832 $(KCONFIG_NFT_CORE)
833 endef
834
835 define KernelPackage/nft-core/description
836 Kernel module support for nftables
837 endef
838
839 $(eval $(call KernelPackage,nft-core))
840
841
842 define KernelPackage/nft-nat
843 SUBMENU:=$(NF_MENU)
844 TITLE:=Netfilter nf_tables NAT support
845 DEPENDS:=+kmod-nft-core +kmod-nf-nat
846 FILES:=$(foreach mod,$(NFT_NAT-m),$(LINUX_DIR)/net/$(mod).ko)
847 AUTOLOAD:=$(call AutoProbe,$(notdir $(NFT_NAT-m)))
848 KCONFIG:=$(KCONFIG_NFT_NAT)
849 endef
850
851 $(eval $(call KernelPackage,nft-nat))
852
853
854 define KernelPackage/nft-nat6
855 SUBMENU:=$(NF_MENU)
856 TITLE:=Netfilter nf_tables IPv6-NAT support
857 DEPENDS:=+kmod-nft-core +kmod-nf-nat6
858 FILES:=$(foreach mod,$(NFT_NAT6-m),$(LINUX_DIR)/net/$(mod).ko)
859 AUTOLOAD:=$(call AutoProbe,$(notdir $(NFT_NAT6-m)))
860 KCONFIG:=$(KCONFIG_NFT_NAT6)
861 endef
862
863 $(eval $(call KernelPackage,nft-nat6))
864