blob: 61be810389d8714837f739bbb0375f468e0d32e2 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
David S. Miller44e36b42006-08-24 04:50:50 -07002#ifndef _XFRM_HASH_H
3#define _XFRM_HASH_H
4
5#include <linux/xfrm.h>
6#include <linux/socket.h>
Christophe Gouaultb58555f2014-08-29 16:16:04 +02007#include <linux/jhash.h>
David S. Miller44e36b42006-08-24 04:50:50 -07008
David S. Miller5f803b52011-02-24 00:33:19 -05009static inline unsigned int __xfrm4_addr_hash(const xfrm_address_t *addr)
David S. Miller44e36b42006-08-24 04:50:50 -070010{
11 return ntohl(addr->a4);
12}
13
David S. Miller5f803b52011-02-24 00:33:19 -050014static inline unsigned int __xfrm6_addr_hash(const xfrm_address_t *addr)
David S. Miller44e36b42006-08-24 04:50:50 -070015{
16 return ntohl(addr->a6[2] ^ addr->a6[3]);
17}
18
David S. Miller5f803b52011-02-24 00:33:19 -050019static inline unsigned int __xfrm4_daddr_saddr_hash(const xfrm_address_t *daddr,
20 const xfrm_address_t *saddr)
David S. Miller44e36b42006-08-24 04:50:50 -070021{
Eric Dumazet0eae88f2010-04-20 19:06:52 -070022 u32 sum = (__force u32)daddr->a4 + (__force u32)saddr->a4;
23 return ntohl((__force __be32)sum);
David S. Miller44e36b42006-08-24 04:50:50 -070024}
25
David S. Miller5f803b52011-02-24 00:33:19 -050026static inline unsigned int __xfrm6_daddr_saddr_hash(const xfrm_address_t *daddr,
27 const xfrm_address_t *saddr)
David S. Miller44e36b42006-08-24 04:50:50 -070028{
29 return ntohl(daddr->a6[2] ^ daddr->a6[3] ^
30 saddr->a6[2] ^ saddr->a6[3]);
31}
32
Christophe Gouaultb58555f2014-08-29 16:16:04 +020033static inline u32 __bits2mask32(__u8 bits)
34{
35 u32 mask32 = 0xffffffff;
36
37 if (bits == 0)
38 mask32 = 0;
39 else if (bits < 32)
40 mask32 <<= (32 - bits);
41
42 return mask32;
43}
44
45static inline unsigned int __xfrm4_dpref_spref_hash(const xfrm_address_t *daddr,
46 const xfrm_address_t *saddr,
47 __u8 dbits,
48 __u8 sbits)
49{
50 return jhash_2words(ntohl(daddr->a4) & __bits2mask32(dbits),
51 ntohl(saddr->a4) & __bits2mask32(sbits),
52 0);
53}
54
55static inline unsigned int __xfrm6_pref_hash(const xfrm_address_t *addr,
56 __u8 prefixlen)
57{
Alexey Dobriyand7f69462017-03-24 01:53:09 +030058 unsigned int pdw;
59 unsigned int pbi;
Christophe Gouaultb58555f2014-08-29 16:16:04 +020060 u32 initval = 0;
61
62 pdw = prefixlen >> 5; /* num of whole u32 in prefix */
63 pbi = prefixlen & 0x1f; /* num of bits in incomplete u32 in prefix */
64
65 if (pbi) {
66 __be32 mask;
67
68 mask = htonl((0xffffffff) << (32 - pbi));
69
70 initval = (__force u32)(addr->a6[pdw] & mask);
71 }
72
73 return jhash2((__force u32 *)addr->a6, pdw, initval);
74}
75
76static inline unsigned int __xfrm6_dpref_spref_hash(const xfrm_address_t *daddr,
77 const xfrm_address_t *saddr,
78 __u8 dbits,
79 __u8 sbits)
80{
81 return __xfrm6_pref_hash(daddr, dbits) ^
82 __xfrm6_pref_hash(saddr, sbits);
83}
84
David S. Miller5f803b52011-02-24 00:33:19 -050085static inline unsigned int __xfrm_dst_hash(const xfrm_address_t *daddr,
86 const xfrm_address_t *saddr,
David S. Miller44e36b42006-08-24 04:50:50 -070087 u32 reqid, unsigned short family,
88 unsigned int hmask)
89{
90 unsigned int h = family ^ reqid;
91 switch (family) {
92 case AF_INET:
93 h ^= __xfrm4_daddr_saddr_hash(daddr, saddr);
94 break;
95 case AF_INET6:
96 h ^= __xfrm6_daddr_saddr_hash(daddr, saddr);
97 break;
98 }
99 return (h ^ (h >> 16)) & hmask;
100}
101
Eric Dumazet95c96172012-04-15 05:58:06 +0000102static inline unsigned int __xfrm_src_hash(const xfrm_address_t *daddr,
103 const xfrm_address_t *saddr,
104 unsigned short family,
105 unsigned int hmask)
David S. Miller44e36b42006-08-24 04:50:50 -0700106{
107 unsigned int h = family;
108 switch (family) {
109 case AF_INET:
Masahide NAKAMURA667bbcb2006-10-03 15:56:09 -0700110 h ^= __xfrm4_daddr_saddr_hash(daddr, saddr);
David S. Miller44e36b42006-08-24 04:50:50 -0700111 break;
112 case AF_INET6:
Masahide NAKAMURA667bbcb2006-10-03 15:56:09 -0700113 h ^= __xfrm6_daddr_saddr_hash(daddr, saddr);
David S. Miller44e36b42006-08-24 04:50:50 -0700114 break;
Joe Perchesccbd6a52010-05-14 10:58:26 +0000115 }
David S. Miller44e36b42006-08-24 04:50:50 -0700116 return (h ^ (h >> 16)) & hmask;
117}
118
119static inline unsigned int
David S. Miller5f803b52011-02-24 00:33:19 -0500120__xfrm_spi_hash(const xfrm_address_t *daddr, __be32 spi, u8 proto,
121 unsigned short family, unsigned int hmask)
David S. Miller44e36b42006-08-24 04:50:50 -0700122{
Al Viro8122adf2006-09-27 18:49:35 -0700123 unsigned int h = (__force u32)spi ^ proto;
David S. Miller44e36b42006-08-24 04:50:50 -0700124 switch (family) {
125 case AF_INET:
126 h ^= __xfrm4_addr_hash(daddr);
127 break;
128 case AF_INET6:
129 h ^= __xfrm6_addr_hash(daddr);
130 break;
131 }
132 return (h ^ (h >> 10) ^ (h >> 20)) & hmask;
133}
134
135static inline unsigned int __idx_hash(u32 index, unsigned int hmask)
136{
137 return (index ^ (index >> 8)) & hmask;
138}
139
David S. Miller5f803b52011-02-24 00:33:19 -0500140static inline unsigned int __sel_hash(const struct xfrm_selector *sel,
Christophe Gouaultb58555f2014-08-29 16:16:04 +0200141 unsigned short family, unsigned int hmask,
142 u8 dbits, u8 sbits)
David S. Miller44e36b42006-08-24 04:50:50 -0700143{
David S. Miller5f803b52011-02-24 00:33:19 -0500144 const xfrm_address_t *daddr = &sel->daddr;
145 const xfrm_address_t *saddr = &sel->saddr;
David S. Miller44e36b42006-08-24 04:50:50 -0700146 unsigned int h = 0;
147
148 switch (family) {
149 case AF_INET:
Christophe Gouaultb58555f2014-08-29 16:16:04 +0200150 if (sel->prefixlen_d < dbits ||
151 sel->prefixlen_s < sbits)
David S. Miller44e36b42006-08-24 04:50:50 -0700152 return hmask + 1;
153
Christophe Gouaultb58555f2014-08-29 16:16:04 +0200154 h = __xfrm4_dpref_spref_hash(daddr, saddr, dbits, sbits);
David S. Miller44e36b42006-08-24 04:50:50 -0700155 break;
156
157 case AF_INET6:
Christophe Gouaultb58555f2014-08-29 16:16:04 +0200158 if (sel->prefixlen_d < dbits ||
159 sel->prefixlen_s < sbits)
David S. Miller44e36b42006-08-24 04:50:50 -0700160 return hmask + 1;
161
Christophe Gouaultb58555f2014-08-29 16:16:04 +0200162 h = __xfrm6_dpref_spref_hash(daddr, saddr, dbits, sbits);
David S. Miller44e36b42006-08-24 04:50:50 -0700163 break;
Joe Perchesccbd6a52010-05-14 10:58:26 +0000164 }
David S. Miller44e36b42006-08-24 04:50:50 -0700165 h ^= (h >> 16);
166 return h & hmask;
167}
168
David S. Miller5f803b52011-02-24 00:33:19 -0500169static inline unsigned int __addr_hash(const xfrm_address_t *daddr,
170 const xfrm_address_t *saddr,
Christophe Gouaultb58555f2014-08-29 16:16:04 +0200171 unsigned short family,
172 unsigned int hmask,
173 u8 dbits, u8 sbits)
David S. Miller44e36b42006-08-24 04:50:50 -0700174{
175 unsigned int h = 0;
176
177 switch (family) {
178 case AF_INET:
Christophe Gouaultb58555f2014-08-29 16:16:04 +0200179 h = __xfrm4_dpref_spref_hash(daddr, saddr, dbits, sbits);
David S. Miller44e36b42006-08-24 04:50:50 -0700180 break;
181
182 case AF_INET6:
Christophe Gouaultb58555f2014-08-29 16:16:04 +0200183 h = __xfrm6_dpref_spref_hash(daddr, saddr, dbits, sbits);
David S. Miller44e36b42006-08-24 04:50:50 -0700184 break;
Joe Perchesccbd6a52010-05-14 10:58:26 +0000185 }
David S. Miller44e36b42006-08-24 04:50:50 -0700186 h ^= (h >> 16);
187 return h & hmask;
188}
189
Joe Perchesc1b12032013-10-18 13:48:25 -0700190struct hlist_head *xfrm_hash_alloc(unsigned int sz);
191void xfrm_hash_free(struct hlist_head *n, unsigned int sz);
David S. Miller44e36b42006-08-24 04:50:50 -0700192
193#endif /* _XFRM_HASH_H */