1 /* iptables module for using new netfilter netlink queue
3 * (C) 2005 by Harald Welte <laforge@netfilter.org>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
11 #include <linux/module.h>
12 #include <linux/skbuff.h>
15 #include <linux/ipv6.h>
16 #include <linux/jhash.h>
18 #include <linux/netfilter.h>
19 #include <linux/netfilter_arp.h>
20 #include <linux/netfilter/x_tables.h>
21 #include <linux/netfilter/xt_NFQUEUE.h>
23 MODULE_AUTHOR("Harald Welte <laforge@netfilter.org>");
24 MODULE_DESCRIPTION("Xtables: packet forwarding to netlink");
25 MODULE_LICENSE("GPL");
26 MODULE_ALIAS("ipt_NFQUEUE");
27 MODULE_ALIAS("ip6t_NFQUEUE");
28 MODULE_ALIAS("arpt_NFQUEUE");
30 static u32 jhash_initval __read_mostly
;
31 static bool rnd_inited __read_mostly
;
34 nfqueue_tg(struct sk_buff
*skb
, const struct xt_action_param
*par
)
36 const struct xt_NFQ_info
*tinfo
= par
->targinfo
;
38 return NF_QUEUE_NR(tinfo
->queuenum
);
41 static u32
hash_v4(const struct sk_buff
*skb
)
43 const struct iphdr
*iph
= ip_hdr(skb
);
45 /* packets in either direction go into same queue */
46 if ((__force u32
)iph
->saddr
< (__force u32
)iph
->daddr
)
47 return jhash_3words((__force u32
)iph
->saddr
,
48 (__force u32
)iph
->daddr
, iph
->protocol
, jhash_initval
);
50 return jhash_3words((__force u32
)iph
->daddr
,
51 (__force u32
)iph
->saddr
, iph
->protocol
, jhash_initval
);
54 #if IS_ENABLED(CONFIG_IP6_NF_IPTABLES)
55 static u32
hash_v6(const struct sk_buff
*skb
)
57 const struct ipv6hdr
*ip6h
= ipv6_hdr(skb
);
60 if ((__force u32
)ip6h
->saddr
.s6_addr32
[3] <
61 (__force u32
)ip6h
->daddr
.s6_addr32
[3]) {
62 a
= (__force u32
) ip6h
->saddr
.s6_addr32
[3];
63 b
= (__force u32
) ip6h
->daddr
.s6_addr32
[3];
65 b
= (__force u32
) ip6h
->saddr
.s6_addr32
[3];
66 a
= (__force u32
) ip6h
->daddr
.s6_addr32
[3];
69 if ((__force u32
)ip6h
->saddr
.s6_addr32
[1] <
70 (__force u32
)ip6h
->daddr
.s6_addr32
[1])
71 c
= (__force u32
) ip6h
->saddr
.s6_addr32
[1];
73 c
= (__force u32
) ip6h
->daddr
.s6_addr32
[1];
75 return jhash_3words(a
, b
, c
, jhash_initval
);
80 nfqueue_hash(const struct sk_buff
*skb
, const struct xt_action_param
*par
)
82 const struct xt_NFQ_info_v1
*info
= par
->targinfo
;
83 u32 queue
= info
->queuenum
;
85 if (par
->family
== NFPROTO_IPV4
)
86 queue
+= ((u64
) hash_v4(skb
) * info
->queues_total
) >> 32;
87 #if IS_ENABLED(CONFIG_IP6_NF_IPTABLES)
88 else if (par
->family
== NFPROTO_IPV6
)
89 queue
+= ((u64
) hash_v6(skb
) * info
->queues_total
) >> 32;
96 nfqueue_tg_v1(struct sk_buff
*skb
, const struct xt_action_param
*par
)
98 const struct xt_NFQ_info_v1
*info
= par
->targinfo
;
99 u32 queue
= info
->queuenum
;
101 if (info
->queues_total
> 1)
102 queue
= nfqueue_hash(skb
, par
);
104 return NF_QUEUE_NR(queue
);
108 nfqueue_tg_v2(struct sk_buff
*skb
, const struct xt_action_param
*par
)
110 const struct xt_NFQ_info_v2
*info
= par
->targinfo
;
111 unsigned int ret
= nfqueue_tg_v1(skb
, par
);
114 ret
|= NF_VERDICT_FLAG_QUEUE_BYPASS
;
118 static int nfqueue_tg_check(const struct xt_tgchk_param
*par
)
120 const struct xt_NFQ_info_v3
*info
= par
->targinfo
;
123 if (unlikely(!rnd_inited
)) {
124 get_random_bytes(&jhash_initval
, sizeof(jhash_initval
));
127 if (info
->queues_total
== 0) {
128 pr_err("NFQUEUE: number of total queues is 0\n");
131 maxid
= info
->queues_total
- 1 + info
->queuenum
;
132 if (maxid
> 0xffff) {
133 pr_err("NFQUEUE: number of queues (%u) out of range (got %u)\n",
134 info
->queues_total
, maxid
);
137 if (par
->target
->revision
== 2 && info
->flags
> 1)
139 if (par
->target
->revision
== 3 && info
->flags
& ~NFQ_FLAG_MASK
)
146 nfqueue_tg_v3(struct sk_buff
*skb
, const struct xt_action_param
*par
)
148 const struct xt_NFQ_info_v3
*info
= par
->targinfo
;
149 u32 queue
= info
->queuenum
;
151 if (info
->queues_total
> 1) {
152 if (info
->flags
& NFQ_FLAG_CPU_FANOUT
) {
153 int cpu
= smp_processor_id();
155 queue
= info
->queuenum
+ cpu
% info
->queues_total
;
157 queue
= nfqueue_hash(skb
, par
);
160 return NF_QUEUE_NR(queue
);
163 static struct xt_target nfqueue_tg_reg
[] __read_mostly
= {
166 .family
= NFPROTO_UNSPEC
,
167 .target
= nfqueue_tg
,
168 .targetsize
= sizeof(struct xt_NFQ_info
),
174 .family
= NFPROTO_UNSPEC
,
175 .checkentry
= nfqueue_tg_check
,
176 .target
= nfqueue_tg_v1
,
177 .targetsize
= sizeof(struct xt_NFQ_info_v1
),
183 .family
= NFPROTO_UNSPEC
,
184 .checkentry
= nfqueue_tg_check
,
185 .target
= nfqueue_tg_v2
,
186 .targetsize
= sizeof(struct xt_NFQ_info_v2
),
192 .family
= NFPROTO_UNSPEC
,
193 .checkentry
= nfqueue_tg_check
,
194 .target
= nfqueue_tg_v3
,
195 .targetsize
= sizeof(struct xt_NFQ_info_v3
),
200 static int __init
nfqueue_tg_init(void)
202 return xt_register_targets(nfqueue_tg_reg
, ARRAY_SIZE(nfqueue_tg_reg
));
205 static void __exit
nfqueue_tg_exit(void)
207 xt_unregister_targets(nfqueue_tg_reg
, ARRAY_SIZE(nfqueue_tg_reg
));
210 module_init(nfqueue_tg_init
);
211 module_exit(nfqueue_tg_exit
);