blob: 2280cfe86c56157f3ca1165baf6f4ad0e73a18be [file] [log] [blame]
Patrick McHardyc01cd422007-12-05 01:24:48 -08001#ifndef _NF_QUEUE_H
2#define _NF_QUEUE_H
3
Eric Leblond97a2d412013-12-06 00:24:12 +01004#include <linux/ip.h>
5#include <linux/ipv6.h>
6#include <linux/jhash.h>
7
Patrick McHardyc01cd422007-12-05 01:24:48 -08008/* Each queued (to userspace) skbuff has one of these. */
Patrick McHardy02f014d2007-12-05 01:26:33 -08009struct nf_queue_entry {
10 struct list_head list;
11 struct sk_buff *skb;
12 unsigned int id;
13
David S. Miller1d1de892015-04-03 16:31:01 -040014 struct nf_hook_state state;
Florian Westphala5fedd432013-04-19 04:58:25 +000015 u16 size; /* sizeof(entry) + saved route keys */
Florian Westphala5fedd432013-04-19 04:58:25 +000016
17 /* extra space to store route keys */
Patrick McHardyc01cd422007-12-05 01:24:48 -080018};
19
Patrick McHardy02f014d2007-12-05 01:26:33 -080020#define nf_queue_entry_reroute(x) ((void *)x + sizeof(struct nf_queue_entry))
Patrick McHardyc01cd422007-12-05 01:24:48 -080021
22/* Packet queuing */
23struct nf_queue_handler {
Aaron Conole54f17bb2016-09-21 11:35:06 -040024 int (*outfn)(struct nf_queue_entry *entry,
25 unsigned int queuenum);
26 void (*nf_hook_drop)(struct net *net,
Aaron Conolee3b37f12016-09-21 11:35:07 -040027 const struct nf_hook_entry *hooks);
Patrick McHardyc01cd422007-12-05 01:24:48 -080028};
29
Eric W. Biedermandc3ee322016-05-13 21:18:52 -050030void nf_register_queue_handler(struct net *net, const struct nf_queue_handler *qh);
31void nf_unregister_queue_handler(struct net *net);
Joe Perches4e77be42013-09-23 11:37:48 -070032void nf_reinject(struct nf_queue_entry *entry, unsigned int verdict);
Patrick McHardyc01cd422007-12-05 01:24:48 -080033
Florian Westphaled78d092015-10-13 14:33:27 +020034void nf_queue_entry_get_refs(struct nf_queue_entry *entry);
Florian Westphala5fedd432013-04-19 04:58:25 +000035void nf_queue_entry_release_refs(struct nf_queue_entry *entry);
36
Eric Leblond97a2d412013-12-06 00:24:12 +010037static inline void init_hashrandom(u32 *jhash_initval)
38{
39 while (*jhash_initval == 0)
40 *jhash_initval = prandom_u32();
41}
42
Liping Zhang2462f3f2016-09-15 20:50:16 +080043static inline u32 hash_v4(const struct iphdr *iph, u32 initval)
Eric Leblond97a2d412013-12-06 00:24:12 +010044{
Eric Leblond97a2d412013-12-06 00:24:12 +010045 /* 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,
Liping Zhang2462f3f2016-09-15 20:50:16 +080048 (__force u32)iph->daddr, iph->protocol, initval);
Eric Leblond97a2d412013-12-06 00:24:12 +010049
50 return jhash_3words((__force u32)iph->daddr,
Liping Zhang2462f3f2016-09-15 20:50:16 +080051 (__force u32)iph->saddr, iph->protocol, initval);
Eric Leblond97a2d412013-12-06 00:24:12 +010052}
53
Liping Zhang2462f3f2016-09-15 20:50:16 +080054static inline u32 hash_v6(const struct ipv6hdr *ip6h, u32 initval)
Eric Leblond97a2d412013-12-06 00:24:12 +010055{
Eric Leblond97a2d412013-12-06 00:24:12 +010056 u32 a, b, c;
57
58 if ((__force u32)ip6h->saddr.s6_addr32[3] <
59 (__force u32)ip6h->daddr.s6_addr32[3]) {
60 a = (__force u32) ip6h->saddr.s6_addr32[3];
61 b = (__force u32) ip6h->daddr.s6_addr32[3];
62 } else {
63 b = (__force u32) ip6h->saddr.s6_addr32[3];
64 a = (__force u32) ip6h->daddr.s6_addr32[3];
65 }
66
67 if ((__force u32)ip6h->saddr.s6_addr32[1] <
68 (__force u32)ip6h->daddr.s6_addr32[1])
69 c = (__force u32) ip6h->saddr.s6_addr32[1];
70 else
71 c = (__force u32) ip6h->daddr.s6_addr32[1];
72
Liping Zhang2462f3f2016-09-15 20:50:16 +080073 return jhash_3words(a, b, c, initval);
74}
75
76static inline u32 hash_bridge(const struct sk_buff *skb, u32 initval)
77{
78 struct ipv6hdr *ip6h, _ip6h;
79 struct iphdr *iph, _iph;
80
81 switch (eth_hdr(skb)->h_proto) {
82 case htons(ETH_P_IP):
83 iph = skb_header_pointer(skb, skb_network_offset(skb),
84 sizeof(*iph), &_iph);
85 if (iph)
86 return hash_v4(iph, initval);
87 break;
88 case htons(ETH_P_IPV6):
89 ip6h = skb_header_pointer(skb, skb_network_offset(skb),
90 sizeof(*ip6h), &_ip6h);
91 if (ip6h)
92 return hash_v6(ip6h, initval);
93 break;
94 }
95
96 return 0;
Eric Leblond97a2d412013-12-06 00:24:12 +010097}
Eric Leblond97a2d412013-12-06 00:24:12 +010098
99static inline u32
100nfqueue_hash(const struct sk_buff *skb, u16 queue, u16 queues_total, u8 family,
Liping Zhang2462f3f2016-09-15 20:50:16 +0800101 u32 initval)
Eric Leblond97a2d412013-12-06 00:24:12 +0100102{
Liping Zhang2462f3f2016-09-15 20:50:16 +0800103 switch (family) {
104 case NFPROTO_IPV4:
105 queue += reciprocal_scale(hash_v4(ip_hdr(skb), initval),
106 queues_total);
107 break;
108 case NFPROTO_IPV6:
109 queue += reciprocal_scale(hash_v6(ipv6_hdr(skb), initval),
110 queues_total);
111 break;
112 case NFPROTO_BRIDGE:
113 queue += reciprocal_scale(hash_bridge(skb, initval),
114 queues_total);
115 break;
116 }
Eric Leblond97a2d412013-12-06 00:24:12 +0100117
118 return queue;
119}
120
Patrick McHardyc01cd422007-12-05 01:24:48 -0800121#endif /* _NF_QUEUE_H */