1 /* SPDX-License-Identifier: GPL-2.0 */
6 #include <linux/ipv6.h>
7 #include <linux/jhash.h>
8 #include <linux/netfilter.h>
9 #include <linux/skbuff.h>
11 /* Each queued (to userspace) skbuff has one of these. */
12 struct nf_queue_entry {
13 struct list_head list;
16 unsigned int hook_index; /* index in hook_entries->hook[] */
17 #if IS_ENABLED(CONFIG_BRIDGE_NETFILTER)
18 struct net_device *physin;
19 struct net_device *physout;
21 struct nf_hook_state state;
22 u16 size; /* sizeof(entry) + saved route keys */
24 /* extra space to store route keys */
27 #define nf_queue_entry_reroute(x) ((void *)x + sizeof(struct nf_queue_entry))
30 struct nf_queue_handler {
31 int (*outfn)(struct nf_queue_entry *entry,
32 unsigned int queuenum);
33 void (*nf_hook_drop)(struct net *net);
36 void nf_register_queue_handler(const struct nf_queue_handler *qh);
37 void nf_unregister_queue_handler(void);
38 void nf_reinject(struct nf_queue_entry *entry, unsigned int verdict);
40 void nf_queue_entry_get_refs(struct nf_queue_entry *entry);
41 void nf_queue_entry_free(struct nf_queue_entry *entry);
43 static inline void init_hashrandom(u32 *jhash_initval)
45 while (*jhash_initval == 0)
46 *jhash_initval = prandom_u32();
49 static inline u32 hash_v4(const struct iphdr *iph, u32 initval)
51 /* packets in either direction go into same queue */
52 if ((__force u32)iph->saddr < (__force u32)iph->daddr)
53 return jhash_3words((__force u32)iph->saddr,
54 (__force u32)iph->daddr, iph->protocol, initval);
56 return jhash_3words((__force u32)iph->daddr,
57 (__force u32)iph->saddr, iph->protocol, initval);
60 static inline u32 hash_v6(const struct ipv6hdr *ip6h, u32 initval)
64 if ((__force u32)ip6h->saddr.s6_addr32[3] <
65 (__force u32)ip6h->daddr.s6_addr32[3]) {
66 a = (__force u32) ip6h->saddr.s6_addr32[3];
67 b = (__force u32) ip6h->daddr.s6_addr32[3];
69 b = (__force u32) ip6h->saddr.s6_addr32[3];
70 a = (__force u32) ip6h->daddr.s6_addr32[3];
73 if ((__force u32)ip6h->saddr.s6_addr32[1] <
74 (__force u32)ip6h->daddr.s6_addr32[1])
75 c = (__force u32) ip6h->saddr.s6_addr32[1];
77 c = (__force u32) ip6h->daddr.s6_addr32[1];
79 return jhash_3words(a, b, c, initval);
82 static inline u32 hash_bridge(const struct sk_buff *skb, u32 initval)
84 struct ipv6hdr *ip6h, _ip6h;
85 struct iphdr *iph, _iph;
87 switch (eth_hdr(skb)->h_proto) {
89 iph = skb_header_pointer(skb, skb_network_offset(skb),
92 return hash_v4(iph, initval);
94 case htons(ETH_P_IPV6):
95 ip6h = skb_header_pointer(skb, skb_network_offset(skb),
96 sizeof(*ip6h), &_ip6h);
98 return hash_v6(ip6h, initval);
106 nfqueue_hash(const struct sk_buff *skb, u16 queue, u16 queues_total, u8 family,
111 queue += reciprocal_scale(hash_v4(ip_hdr(skb), initval),
115 queue += reciprocal_scale(hash_v6(ipv6_hdr(skb), initval),
119 queue += reciprocal_scale(hash_bridge(skb, initval),
127 int nf_queue(struct sk_buff *skb, struct nf_hook_state *state,
128 unsigned int index, unsigned int verdict);
130 #endif /* _NF_QUEUE_H */